16
|
How do I refresh the control
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.Items.Add("Item 1")
oExMenu.Refresh()
|
15
|
How do I change the color to highligth the selected item
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.HighLightBorderColor = 0xff
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
14
|
How do I change the drop down, popup menu foreground color
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.PopupForeColor = 0xff
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
13
|
How do I change the drop down, popup menu background color
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.PopupBackColor = 0xff
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
12
|
How do I change the control's shadow color
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.ShadowColor = 0xff
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
11
|
How do I place the control on vertical
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.OpenMode = 1
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
10
|
How do I change the control's appearance
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.Appearance = 2
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
9
|
How do I change the control's appearance
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.Appearance = 0
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
8
|
How do I change the visual appearance effect for the selected item, using EBN
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExMenu.SelBackColor = 0x1000000
oExMenu.SelForeColor = 0x0
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
7
|
How do I change the colors for the selected item
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.SelBackColor = 0x0
oExMenu.SelForeColor = 0xffffff
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
6
|
How do I change the control's foreground color
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.ForeColor = 0xff
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
5
|
How do I change the control's background color
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.BackColor = 0xc8c8c8
|
4
|
How can I change the control's font
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.Font.Name = "Tahoma"
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
3
|
How do I change the drop down menu's border
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.Border = 1
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
2
|
How do I change the control's border, using your EBN files
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExMenu.MenuBarBorder = 16777216 /*0x1000000 | */
oExMenu.Border = 16777216 /*0x1000000 | */
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|
1
|
How do I change the control's border
local oExMenu
oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject
oExMenu.MenuBarBorder = 1
oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])"
|